| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import React from "react"; |
||
| 5 | |||
| 6 | export default class MyDocument extends Document { |
||
| 7 | render(){ |
||
| 8 | return ( |
||
| 9 | <Html lang="en"> |
||
| 10 | <Head> |
||
| 11 | {/* PWA primary color */} |
||
| 12 | <meta name="theme-color" content={theme.palette.primary.main} /> |
||
| 13 | <link |
||
| 14 | rel="stylesheet" |
||
| 15 | href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" |
||
| 16 | /> |
||
| 17 | </Head> |
||
| 18 | <body> |
||
| 19 | <Main /> |
||
| 20 | <NextScript /> |
||
| 21 | </body> |
||
| 22 | </Html> |
||
| 23 | ); |
||
| 43 |